home *** CD-ROM | disk | FTP | other *** search
Text File | 1990-02-16 | 1.0 KB | 38 lines | [TEXT/GEOL] |
- Item forwarded by A33 to A34
-
- Item 9236958 14-Feb-90 10:22PST
-
- From: BOETCHER1 Boetcher, Mary
-
- To: MACAPP.TECH$ MacApp Technical
-
- cc: D2652 Strategic Planning Sys, D Bell,PRT
-
- Sub: Re: Mouser Question
-
- Dan,
-
- I found nothing wrong (Mouserly speaking) with the code fragment you supplied.
- Perhaps the problem is in the code preceding it. Mouser’s Pascal parser can get
- confused by conditioned code that the compiler skips. If you condition some
- statements with {$IFC FALSE}, Mouser will still parse them since it doesn’t
- understand conditionals. So you could get missing END or BEGIN errors,
- depending on what’s in the conditioned-out code. For example:
-
- IF something THEN
- {$IFC FALSE}
- BEGIN
- SomeStatements;
- {$ENDC}
- BEGIN
- SomeMoreStatements;
- END;
-
- Here Mouser would report a missing END, because it sees both BEGINs.
-
- Good luck,
-
- Mary Boetcher
- Mouser Woman
-
-